func strconv.appendQuotedWith

5 uses

	strconv (current package)
		quote.go#L24: 	return string(appendQuotedWith(make([]byte, 0, 3*len(s)/2), s, quote, ASCIIonly, graphicOnly))
		quote.go#L31: func appendQuotedWith(buf []byte, s string, quote byte, ASCIIonly, graphicOnly bool) []byte {
		quote.go#L135: 	return appendQuotedWith(dst, s, '"', false, false)
		quote.go#L148: 	return appendQuotedWith(dst, s, '"', true, false)
		quote.go#L162: 	return appendQuotedWith(dst, s, '"', false, true)